blob: ff45b51763afdd1fd5427a2b166c42247fdd5777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<script lang="ts" context="module">
export const load = ({ params: { id } }) => ({ props: { id } });
</script>
<script lang="ts">
import { _ } from 'svelte-i18n';
import { topicsForTag } from '$lib/stores/topics';
import ErrorBlock from '$lib/components/error_block/error_block.svelte';
import Loader from '$lib/components/loader/loader.svelte';
import Tag from '$lib/components/tag/tag.svelte';
export let id: string;
$: tagResponse = topicsForTag(id);
</script>
<svelte:head>
<title>{id}, {$_('tag.title')}</title>
</svelte:head>
{#if $tagResponse.loading}
<Loader />
{/if}
{#if $tagResponse.error}
<ErrorBlock message={$_('tag.error.unavailable')} />
{/if}
{#if $tagResponse.data}
<Tag topics={$tagResponse.data} tag={id} />
{/if}
|